e60ae0b85d48910559335ba96ce03300892a8f74,app/src/main/java/me/wcy/weather/activity/WeatherActivity.java,WeatherActivity,onCreate,#Bundle#,99

Before Change


        }

        mACache = ACache.get(getApplicationContext());
        mCity = mACache.getAsString(Extras.CITY);

        SystemUtils.voiceAnimation(fabSpeech, false);

After Change


        }

        mACache = ACache.get(getApplicationContext());
        mCity = (CityEntity) mACache.getAsObject(Extras.CITY);

        SystemUtils.voiceAnimation(fabSpeech, false);